/* 字体引入 */

/* 网站基本宽度（注意修改） */
.container {
  box-sizing: content-box;
  padding: 0 15px;
  transition: 300ms ease;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1500px;
  }
}

/* 新增 */
#banner .content{
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#banner .content h2{
  font-size: 60px;
  color: white;
}
#banner .content h4{
  font-size: 42px;
  color: white;
}
#banner .content p{
  font-size: 24px;
  color: white;
}
/* end */



/* 手机端头部 */
#m-header-wrapper {
  display: none;
}
#m-header-wrapper .overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
#m-header-wrapper .m-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 45px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: 300ms;
}
#m-header-wrapper .m-header.active {
  left: 200px;
}
#m-header-wrapper .m-header .container {
  height: 100%;
  position: relative;
}
#m-header-wrapper .m-header .container .toggle-btn {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
#m-header-wrapper .m-header .container .toggle-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #333;
  margin-bottom: 5px;
  transition: 300ms;
}
#m-header-wrapper .m-header .container .toggle-btn span:last-of-type {
  margin-bottom: 0;
}
#m-header-wrapper .m-header .container .toggle-btn.active span:nth-of-type(1) {
  transform: rotate(45deg);
  transform-origin: left center;
}
#m-header-wrapper .m-header .container .toggle-btn.active span:nth-of-type(2) {
  opacity: 0;
}
#m-header-wrapper .m-header .container .toggle-btn.active span:nth-of-type(3) {
  transform: rotate(-45deg);
  transform-origin: left center;
}
#m-header-wrapper .m-header .container .logo {
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#m-header-wrapper .m-header .container .logo img {
  width: 90px;
}
#m-header-wrapper .m-toggle-nav {
  position: fixed;
  width: 200px;
  height: 100%;
  left: -200px;
  top: 0;
  overflow-y: auto;
  background: #333;
  z-index: 9999;
  transition: 300ms;
  padding: 15px 0;
}
#m-header-wrapper .m-toggle-nav.active {
  left: 0;
}
#m-header-wrapper .m-toggle-nav h1 {
  font: 14px sans-serif;
  color: #fff;
  text-transform: uppercase;
  padding: 0 15px 20px;
}
#m-header-wrapper .m-toggle-nav h1 .icon {
  font-size: 14px;
  color: #fff;
  margin-right: 10px;
}
#m-header-wrapper .m-toggle-nav .menu-box {
  padding-bottom: 25px;
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li > a {
  display: block;
  font: 12px/40px sans-serif;
  color: #fff;
  padding-left: 15px;
  text-transform: uppercase;
  position: relative;
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li > a i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #fff;
  display: none;
  transition: 300ms;
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li > a i.active {
  transform: translateY(-50%) rotate(180deg);
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li .sub-menu {
  background: #000;
  padding: 5px 0;
  display: none;
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li .sub-menu li a {
  display: block;
  font: 12px/40px sans-serif;
  padding-left: 15px;
  color: #fff;
  text-transform: uppercase;
}
#m-header-wrapper .m-toggle-nav .search-box {
  padding: 15px 15px 35px;
  position: relative;
}
#m-header-wrapper .m-toggle-nav .search-box input[type="text"] {
  width: 100%;
  height: 30px;
  border: none;
  outline: none;
  padding: 0 40px 0 10px;
  font: 12px sans-serif;
  color: #333;
}
#m-header-wrapper .m-toggle-nav .search-box button {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 15px;
  top: 15px;
  border: none;
  outline: none;
  text-align: center;
  background: #000;
}
#m-header-wrapper .m-toggle-nav .search-box button i {
  font-size: 12px;
  line-height: 30px;
  color: #fff;
}
#m-header-wrapper .m-toggle-nav .lan h1 {
  padding-bottom: 10px;
  position: relative;
}
#m-header-wrapper .m-toggle-nav .lan h1 i.fa-angle-down {
  position: absolute;
  right: 15px;
  top: 1px;
  font-size: 16px;
  color: #fff;
  transition: 300ms;
}
#m-header-wrapper .m-toggle-nav .lan h1 i.fa-angle-down.active {
  transform: rotate(180deg);
}
#m-header-wrapper .m-toggle-nav .lan ul {
  background: #000;
  display: none;
}
#m-header-wrapper .m-toggle-nav .lan ul li a {
  display: block;
  font: 12px/30px sans-serif;
  color: #fff;
  padding-left: 15px;
}
.toggle-nav {
  position: fixed;
  width: 200px;
  height: 100%;
  right: -200px;
  top: 0;
  background: #333;
  z-index: 99;
  padding-top: 150px;
}
.toggle-nav .close {
  position: absolute;
  left: 20px;
  top: 45px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}
.toggle-nav .menu-box .menu > li > a {
  display: block;
  font: 16px/40px "微软雅黑";
  color: #fff;
  padding-left: 20px;
}
.toggle-nav .menu-box .menu > li .sub-menu {
  background: #000;
  display: none;
}
.toggle-nav .menu-box .menu > li .sub-menu li a {
  display: block;
  font: 16px/40px "微软雅黑";
  color: #fff;
  padding-left: 30px;
}
#header .container {
  max-width: 1800px;
  height: 105px;
}
#header .container .logo {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#header .container .toggle-btn {
  width: 139px;
  height: 38px;
  border: 1px solid rgba(223, 223, 223, 0.2);
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font: 14px/36px "微软雅黑";
  color: #000;
  text-align: center;
  cursor: pointer;
}
#header .container .toggle-btn img {
  vertical-align: middle;
  margin-right: 13px;
}
#header .container .lan {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 14px 0 50px;
  text-align: center;
  z-index: 99;
}
#header .container .lan > a {
  display: block;
  width: 139px;
  height: 38px;
  border: 1px solid rgba(223, 223, 223, 0.2);
  font: 14px/36px "微软雅黑";
  color: #000;
}
#header .container .lan img {
  vertical-align: middle;
  margin-right: 13px;
}
#header .container .lan i {
  margin-left: 15px;
}
#header .container .lan .children {
  position: absolute;
  width: 100%;
  background: #000;
  left: 0;
  top: 100%;
  display: none;
}
#header .container .lan .children li a {
  display: block;
  font: 14px/40px "微软雅黑";
  color: #fff;
}
#header .container .lan .children li a:hover {
  text-decoration: underline;
}
#header .container .search-btn{
  margin-left: 50px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
#header .container .search-btn i{
  font-size: 20px;
  color: #000;
}
#header .container .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .container .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .container .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .container .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 24px;
  font-family: r;
  color: #000;
  padding: 10px 0;
}
#header .container .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#header .container .menu-box .menu {
  font-size: 0;
}
#header .container .menu-box .menu > li {
  display: inline-block;
  vertical-align: top;
  margin-right: 30px;
  position: relative;
}
#header .container .menu-box .menu > li img{
  vertical-align: middle;
  width: 100px;
}
#header .container .menu-box .menu > li:last-of-type {
  margin-right: 0;
}
#header .container .menu-box .menu > li > a {
  display: block;
  font: 18px/105px "微软雅黑";
  color: #000;
}
#header .container .menu-box .menu > li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 200px;
  background: #000;
  display: none;
  z-index: 99;
}
#header .container .menu-box .menu > li .sub-menu li a {
  display: block;
  font: 16px/40px "微软雅黑";
  color: #fff;
  padding-left: 15px;
}
#header .container .menu-box .menu > li .sub-menu li a:hover {
  text-decoration: underline;
}
#index-banner #banner .swiper-slide {
  height: 800px;
  position: relative;
}
#index-banner #banner .swiper-slide:nth-of-type(1){
	background: url(../images/banner.jpg) center center no-repeat;
  background-size: cover;	
}
#index-banner #banner .swiper-slide:nth-of-type(2){
	background: url(../images/banner2.jpg) center center no-repeat;
  background-size: cover;
}
#index-banner #banner .swiper-slide .inner {
  width: 100%;
  padding: 0 15px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
#index-banner #banner .swiper-slide .inner p:nth-of-type(1) {
  font: bold 60px "微软雅黑";
  color: #fff;
  letter-spacing: 20px;
	text-shadow: 3px 3px 5px rgba(0,0,0,.5);
}
#index-banner #banner .swiper-slide .inner p:nth-of-type(2) {
  font: 36px l;
  color: #fff;
  margin: 5px 0 15px;
	text-shadow: 3px 3px 5px rgba(0,0,0,.5);
}
#index-banner #banner .swiper-slide .inner p:nth-of-type(3) {
  font: 25px "微软雅黑";
  color: #fff;
  margin-bottom: 15px;
	text-shadow: 3px 3px 5px rgba(0,0,0,.5);
}
#index-banner #banner .swiper-slide .inner p:nth-of-type(4) {
  display: inline-block;
  max-width: 485px;
  font: 18px/36px "微软雅黑";
  color: #fff;
	text-shadow: 3px 3px 5px rgba(0,0,0,.5);
}
#index-banner #banner #banner-page {
  bottom: 185px;
}
#index-banner #banner #banner-page .swiper-pagination-bullet {
  width: 19px;
  height: 22px;
  background: url(../images/page.png) no-repeat;
  border-radius: 0;
  opacity: 1;
  margin: 0 10px;
}
#index-banner #banner #banner-page .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: url(../images/page-active.png) no-repeat;
}
#index-banner #banner .mouse {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 40px;
  z-index: 99;
  cursor: pointer;
}
#index-body .i-product .i-pro-top {
  text-align: center;
  font-size: 0;
  background: #fff;
}
#index-body .i-product .i-pro-top a {
  display: inline-block;
  padding: 215px 95px 60px;
  font: bold 20px "微软雅黑";
  color: #000;
  transition: 300ms;
}
#index-body .i-product .i-pro-top a:nth-of-type(1) {
  background: url(../images/ip1.png) center 75px no-repeat;
}
#index-body .i-product .i-pro-top a:nth-of-type(1):hover {
  background: url(../images/ip1-hv.png) center 75px no-repeat;
}
#index-body .i-product .i-pro-top a:nth-of-type(2) {
  background: url(../images/ip2.png) center 75px no-repeat;
}
#index-body .i-product .i-pro-top a:nth-of-type(2):hover {
  background: url(../images/ip2-hv.png) center 75px no-repeat;
}
#index-body .i-product .i-pro-top a:nth-of-type(3) {
  background: url(../images/ip3.png) center 75px no-repeat;
}
#index-body .i-product .i-pro-top a:nth-of-type(3):hover {
  background: url(../images/ip3-hv.png) center 75px no-repeat;
}
#index-body .i-product .i-pro-top a:nth-of-type(4) {
  background: url(../images/ip4.png) center 75px no-repeat;
}
#index-body .i-product .i-pro-top a:nth-of-type(4):hover {
  background: url(../images/ip4-hv.png) center 75px no-repeat;
}
#index-body .i-product .i-pro-bottom {
  padding: 55px 0 145px;
  background: #97ccf5;
  box-shadow: 0 30px 30px rgba(0, 0, 0, 0.3) inset;
}
#index-body .i-product .i-pro-bottom .i-pro-tit {
  margin-bottom: 65px;
}
#index-body .i-product .i-pro-bottom .i-pro-tit .container {
  max-width: 1380px;
}
#index-body .i-product .i-pro-bottom .i-pro-tit .container p:nth-of-type(1) {
  font: 14px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#index-body .i-product .i-pro-bottom .i-pro-tit .container p:nth-of-type(2) {
  font: bold 36px "微软雅黑";
  color: #fff;
  letter-spacing: 5px;
}
#index-body .i-product .i-pro-bottom .i-pro-list #ip{
  padding: 80px 0;
}
#index-body .i-product .i-pro-bottom .i-pro-list .swiper-slide {
  padding: 0 35px;
  position: relative;
}
#index-body .i-product .i-pro-bottom .i-pro-list .swiper-slide:last-of-type:after {
  display: none;
}
#index-body .i-product .i-pro-bottom .i-pro-list .swiper-slide:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #fff, transparent);
}
#index-body .i-product .i-pro-bottom .i-pro-list .swiper-slide .inner {
  position: relative;
  z-index: 2;
}
#index-body .i-product .i-pro-bottom .i-pro-list .swiper-slide .inner img {
  width: 100%;
  margin-bottom: 25px;
}
#index-body .i-product .i-pro-bottom .i-pro-list .swiper-slide .inner p:nth-of-type(1) {
  font: 18px "微软雅黑";
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  transition: 200ms;
}
#index-body .i-product .i-pro-bottom .i-pro-list .swiper-slide .inner p:nth-of-type(2) {
  font: 13px/30px "微软雅黑";
  color: #fff;
  transition: 200ms;
}
#index-body .i-product .i-pro-bottom .i-pro-list .swiper-slide .hover {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #f4f5f6;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 1;
  transition: 300ms;
}
#index-body .i-product .i-pro-bottom .i-pro-list .swiper-slide .hover .link {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: #fff;
  text-align: center;
  line-height: 60px;
  font-size: 25px;
  color: #0278d6;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  box-shadow: 4px 4px 9px rgba(0, 0, 0, 0.3);
  transform: scaleY(0.8);
}
#index-body .i-product .i-pro-bottom .i-pro-list .swiper-slide:hover .inner p {
  color: #000000!important;
}
#index-body .i-product .i-pro-bottom .i-pro-list .swiper-slide:hover .hover {
  opacity: 1;
  transform: scaleY(1.2);
}
#index-body .i-apl #iapl .swiper-slide {
  height: 635px;
}
#index-body .i-apl #iapl .swiper-slide:nth-of-type(1){
  background: url(../images/aplbg.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-apl #iapl .swiper-slide:nth-of-type(2){
  background: url(../images/aplbg2.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-apl #iapl .swiper-slide:nth-of-type(3){
  background: url(../images/aplbg3.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-apl #iapl .swiper-slide .container {
  max-width: 1500px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#index-body .i-apl #iapl .swiper-slide .container p:nth-of-type(1) {
  font: 14px l;
  color: #000;
  opacity: 0.3;
}
#index-body .i-apl #iapl .swiper-slide .container p:nth-of-type(2) {
  font: bold 36px "微软雅黑";
  color: #01579a;
  margin: 5px 0 10px;
}
#index-body .i-apl #iapl .swiper-slide .container p:nth-of-type(3) {
  max-width: 590px;
  font: 18px/30px "微软雅黑";
  color: #000;
  margin-bottom: 35px;
}
#index-body .i-apl #iapl .swiper-slide .container a {
  display: block;
  width: 159px;
  height: 47px;
  border-radius: 24px;
  background: #01579a;
  text-align: center;
  font: 16px/47px "微软雅黑";
  color: #fff;
}
#index-body .i-apl #iapl .swiper-slide .container a img {
  vertical-align: middle;
  margin-left: 10px;
}
#index-body .i-apl #iapl #iapl-page {
  width: 160px;
  height: 65px;
  background: #fff;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 8px 8px 0 0;
  padding-top: 25px;
}
#index-body .i-apl #iapl #iapl-page .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background: #fefaf4;
  opacity: 1;
  box-shadow: 0 0 5px #dad7d2 inset;
  margin: 0 6px;
}
#index-body .i-apl #iapl #iapl-page .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #01579a;
  box-shadow: none;
}
#index-body .i-partner {
  padding: 125px 0;
}
#index-body .i-partner .container {
  max-width: 1500px;
}
#index-body .i-partner .container #ipartner .swiper-slide img {
  width: 100%;
/*  -webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: gray;*/
transition: 300ms;
}
/*#index-body .i-partner .container #ipartner .swiper-slide img:hover{
  -webkit-filter: grayscale(0);
-moz-filter: grayscale(0);
-ms-filter: grayscale(0);
-o-filter: grayscale(0);
filter: grayscale(0);
}*/
#index-body .i-news {
  padding: 60px 0 120px;
  background: url(../images/inbg.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-news .container {
  overflow: hidden;
  max-width: 1635px;
}
#index-body .i-news .container .i-news-tit {
  text-align: center;
  margin-bottom: 40px;
}
#index-body .i-news .container .i-news-tit p:nth-of-type(1) {
  font: 14px;
  color: #000;
  opacity: 0.35;
  text-transform: uppercase;
}
#index-body .i-news .container .i-news-tit p:nth-of-type(2) {
  font: bold 36px "微软雅黑";
  color: #01579a;
  margin: 10px 0 15px;
}
#index-body .i-news .container .i-news-tit p:nth-of-type(3) {
  font: 14px "微软雅黑";
  color: #000000;
  opacity: 0.5;
}
/*#index-body .i-news .container .i-news-list {
  margin: -15px;
}
#index-body .i-news .container .i-news-list .column {
  padding: 15px;
}
#index-body .i-news .container .i-news-list .column .inner {
  padding: 65px 35px 40px;
  background: rgba(255, 255, 255, 0.57);
  transition: 300ms;
}
#index-body .i-news .container .i-news-list .column .inner:hover {
  transform: translateY(-5px);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.08);
}
#index-body .i-news .container .i-news-list .column .inner p:nth-of-type(1) {
  font: 23px "微软雅黑";
  color: #000;
  text-align: center;
  margin-bottom: 25px;
}
#index-body .i-news .container .i-news-list .column .inner p:nth-of-type(2) {
  font: 14px/30px "微软雅黑";
  color: #000;
  opacity: 0.5;
  margin-bottom: 40px;
}
#index-body .i-news .container .i-news-list .column .inner p:nth-of-type(3) {
  font: 15px "微软雅黑";
  color: #000;
  text-align: right;
}*/
#index-body .i-news .container .i-news-list{
  margin: -30px;
}
#index-body .i-news .container .i-news-list .column{
  padding: 30px;
}
#index-body .i-news .container .i-news-list .column .date{
  width: 10%;
  text-align: center;
}
#index-body .i-news .container .i-news-list .column .date p:nth-of-type(1){
  font-size: 40px;
  font-weight: bold;
  color: #333;
  border-bottom: 1px solid #ccc;
  margin-bottom: 5px;
}
#index-body .i-news .container .i-news-list .column .date p:nth-of-type(2){
  font-size: 16px;
  color: #333;
}
#index-body .i-news .container .i-news-list .column .info{
  width: 90%;
  padding-left: 30px;
  margin-top: 15px;
}
#index-body .i-news .container .i-news-list .column .info p:nth-of-type(1){
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#index-body .i-news .container .i-news-list .column .info p:nth-of-type(2){
  font-size: 14px;
  line-height: 26px;
  color: #333;
}
#index-body .i-num {
  padding: 65px 0;
  background: #01579a;
  box-shadow: 0 30px 30px rgba(0, 0, 0, 0.3) inset;
  overflow: hidden;
}
#index-body .i-num .i-num-list {
  margin: -15px 0;
}
#index-body .i-num .i-num-list .column {
  text-align: center;
  position: relative;
  padding: 15px 0;
}
#index-body .i-num .i-num-list .column:last-of-type:after {
  display: none;
}
#index-body .i-num .i-num-list .column:after {
  content: "";
  width: 5px;
  height: 96px;
  background: #bababa;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.2;
}
#index-body .i-num .i-num-list .column p:nth-of-type(1) {
  font: 18px l;
  color: #fff;
}
#index-body .i-num .i-num-list .column p:nth-of-type(1) span {
  font: 80px impact;
  color: #bababa;
}
#index-body .i-num .i-num-list .column p:nth-of-type(2) {
  font: 14px l;
  color: #fff;
}
#footer {
  background: #252525;
}
#footer .container {
  max-width: 1700px;
}
#footer .container .footer-top {
  padding: 60px 45px 90px;
  font-size: 0;
  border-bottom: 1px solid #333333;
}
#footer .container .footer-top .item {
  display: inline-block;
  vertical-align: top;
}
#footer .container .footer-top .item:nth-of-type(1) {
  width: 32%;
}
#footer .container .footer-top .item:nth-of-type(2) {
  width: 20%;
}
#footer .container .footer-top .item:nth-of-type(3) {
  width: 20%;
}
#footer .container .footer-top .item:nth-of-type(4) {
  width: 20%;
}
#footer .container .footer-top .item:nth-of-type(5) {
  width: 8%;
}
#footer .container .footer-top .item .logo {
  margin-bottom: 25px;
}
#footer .container .footer-top .item .erweima {
  font-size: 0;
}
#footer .container .footer-top .item .erweima > div {
  display: inline-block;
}
#footer .container .footer-top .item .erweima > div.erweima-1 {
  margin-right: 10px;
}
#footer .container .footer-top .item .erweima > div .img {
  width: 155px;
  border: 9px solid #414141;
  margin-bottom: 8px;
}
#footer .container .footer-top .item .erweima > div .img img {
  width: 100%;
}
#footer .container .footer-top .item .erweima > div p {
  text-align: center;
  font: 16px "微软雅黑";
  color: #bababa;
}
#footer .container .footer-top .item > p {
  font: 24px "微软雅黑";
  color: #fff;
  margin-bottom: 20px;
}
#footer .container .footer-top .item ul li {
  font: 16px "微软雅黑";
  color: #787878;
  margin-bottom: 15px;
}
#footer .container .footer-top .item ul li:last-of-type {
  margin-bottom: 0;
}
#footer .container .footer-top .item ul li a:hover {
  color: #01579a;
}
#footer .container .footer-center {
  padding: 25px 45px;
  border-bottom: 1px solid #333;
  font-size: 0;
}
#footer .container .footer-center .item {
  display: inline-block;
  vertical-align: top;
  font: 14px/36px l;
  color: #fff;
  opacity: 0.5;
}
#footer .container .footer-center .item:nth-of-type(1) {
  width: 35%;
}
#footer .container .footer-center .item:nth-of-type(2) {
  width: 18%;
}
#footer .container .footer-center .item:nth-of-type(3) {
  width: 21%;
}
#footer .container .footer-center .item:nth-of-type(4) {
  width: 26%;
}
#footer .container .footer-bottom {
  padding: 20px 45px;
}
#footer .container .footer-bottom p {
  font: 14px "微软雅黑";
  color: #fff;
  opacity: 0.2;
}
#footer .container .footer-bottom p:nth-of-type(1) {
  margin-right: 70px;
}
#footer .container .footer-bottom p:nth-of-type(2) {
  margin-right: 70px;
}
#inner-banner {
  height: 300px;
  background: url(../images/inner-banner.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}
#inner-banner #bdt-header-animation{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#inner-banner .container {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}
#inner-banner .container .tit {
  font: bold 40px "微软雅黑";
  color: #fff;
  margin-bottom: 5px;
}
#inner-banner .container .bread {
  font: 16px l;
  color: #fff;
}
#inner-banner .container .bread a,
#inner-banner .container .bread span {
  font: 16px l;
  color: #fff;
}
#inner-nav {
  padding: 25px 0;
  border-bottom: 1px solid #dfdfdf;
}
#inner-nav ul {
  text-align: center;
}
#inner-nav ul li {
  display: inline-block;
  font: 16px "微软雅黑";
  color: #333;
  padding: 0 30px;
	position: relative;
}
#inner-nav ul li:after{
	content: "";
	width: 1px;
	height: 15px;
	background: #ccc;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
#inner-nav ul li:last-of-type:after{
	display: none;
}
#inner-nav ul li .children{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    display:none;
}
#inner-nav ul li:hover .children{
    display:block;
}
#inner-nav ul li .children li{
    padding: 10px 0;
    border:1px solid #ccc;
}
#inner-nav ul li .children li a{
    font-size:14px;
}
.inner-page {
  font-family: "微软雅黑";
  font-size: 14px;
}
.inner-page.inner-about .inner-about-1 {
  padding: 60px 0 100px;
}
.inner-page.inner-about .inner-about-1 .container .left {
  width: 56%;
}
.inner-page.inner-about .inner-about-1 .container .left img {
  width: 100%;
}
.inner-page.inner-about .inner-about-1 .container .right {
  width: 40%;
  height: 450px;
  overflow: auto;
  padding-left: 30px;
  padding-right: 30px;
}
.inner-page.inner-about .inner-about-1 .container .right .wpulike{
  display: none!important;
}
.inner-page.inner-about .inner-about-1 .container .right p:nth-of-type(1) {
  font-size: 38px;
  font-weight: bold;
  color: #01579a;
}
.inner-page.inner-about .inner-about-1 .container .right p:nth-of-type(2) {
  font-size: 20px;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.inner-page.inner-about .inner-about-1 .container .right p:nth-of-type(3) {
  font-size: 14px;
  color: #666;
  line-height: 30px;
}
.inner-page.inner-about .inner-about-2 {
  padding: 80px 0 90px;
  background: #f7f7f7;
}
.inner-page.inner-about .inner-about-2 .container .tit {
  text-align: center;
  margin-bottom: 60px;
}
.inner-page.inner-about .inner-about-2 .container .tit p:nth-of-type(1) {
  font-size: 38px;
  color: #01579a;
}
.inner-page.inner-about .inner-about-2 .container .tit p:nth-of-type(2) {
  font-size: 22px;
  color: #666;
}
.inner-page.inner-about .inner-about-2 .container .list {
  position: relative;
}
.inner-page.inner-about .inner-about-2 .container .list #honour .swiper-slide img {
  width: 100%;
}
.inner-page.inner-about .inner-about-2 .container .list #honour-l,
.inner-page.inner-about .inner-about-2 .container .list #honour-r {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #ccc;
  opacity: 1;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  color: #333;
}
.inner-page.inner-about .inner-about-2 .container .list #honour-l {
  left: -80px;
}
.inner-page.inner-about .inner-about-2 .container .list #honour-r {
  right: -80px;
}
.inner-page.inner-about .inner-about-2 .container .list #factory-l,
.inner-page.inner-about .inner-about-2 .container .list #factory-r {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #ccc;
  opacity: 1;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  color: #333;
}
.inner-page.inner-about .inner-about-2 .container .list #factory-l {
  left: -80px;
}
.inner-page.inner-about .inner-about-2 .container .list #factory-r {
  right: -80px;
}
.inner-page.inner-about .inner-about-3 {
  padding: 80px 0 90px;
}
.inner-page.inner-about .inner-about-3 .container .tit {
  text-align: center;
  margin-bottom: 60px;
}
.inner-page.inner-about .inner-about-3 .container .tit p:nth-of-type(1) {
  font-size: 38px;
  color: #01579a;
}
.inner-page.inner-about .inner-about-3 .container .tit p:nth-of-type(2) {
  font-size: 22px;
  color: #666;
}
.inner-page.inner-about .inner-about-3 .container .list {
  position: relative;
}
.inner-page.inner-about .inner-about-3 .container .list #partner {
  padding: 10px;
}
.inner-page.inner-about .inner-about-3 .container .list #partner .swiper-slide {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.inner-page.inner-about .inner-about-3 .container .list #partner .swiper-slide img {
  width: 100%;
}
.inner-page.inner-about .inner-about-3 .container .list #partner-l,
.inner-page.inner-about .inner-about-3 .container .list #partner-r {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #ccc;
  opacity: 1;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  color: #333;
}
.inner-page.inner-about .inner-about-3 .container .list #partner-l {
  left: -80px;
}
.inner-page.inner-about .inner-about-3 .container .list #partner-r {
  right: -80px;
}
.inner-page.inner-product {
  background: #fbfbfb;
}
.inner-page.inner-product .container {
  max-width:1600px;
  overflow: hidden;
   padding: 80px 15px;
}
.inner-page.inner-product .container .inner-product-list {
  margin: -15px;
}
.inner-page.inner-product .container .inner-product-list .column {
  padding: 15px;
}
.inner-page.inner-product .container .inner-product-list .column .inner {
  transition: 300ms;
	border: 1px solid #ccc;
}
.inner-page.inner-product .container .inner-product-list .column .inner:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.inner-page.inner-product .container .inner-product-list .column .inner:hover .info{
  background: #01579a;
}
.inner-page.inner-product .container .inner-product-list .column .inner:hover .info p{
  color: #fff!important;
}
.inner-page.inner-product .container .inner-product-list .column .inner .img-box img {
  width: 100%;
}
.inner-page.inner-product .container .inner-product-list .column .inner .info {
  padding: 30px;
  background: #fff;
	border-top: 1px solid #ccc;
  transition: 300ms;
}
.inner-page.inner-product .container .inner-product-list .column .inner .info p:nth-of-type(1) {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
  font-weight: bold;
}
.inner-page.inner-product .container .inner-product-list .column .inner .info p:nth-of-type(2) {
  font-size: 13px;
  color: #333;
}
.inner-page.inner-prodet {
  padding: 80px 0;
  background: #fbfbfb;
}
.inner-page.inner-prodet .container .inner-prodet-1 {
  margin-bottom: 40px;
}
.inner-page.inner-prodet .container .inner-prodet-1 .left {
  width: 40%;
}
.inner-page.inner-prodet .container .inner-prodet-1 .left img {
  width: 100%;
}
.inner-page.inner-prodet .container .inner-prodet-1 .right {
  width: 60%;
  padding-left: 60px;
}
.inner-page.inner-prodet .container .inner-prodet-1 .right p:nth-of-type(1) {
  font-size: 28px;
  padding: 25px 0;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 40px;
}
.inner-page.inner-prodet .container .inner-prodet-1 .right p:nth-of-type(2) {
  font-size: 13px;
  line-height: 30px;
  color: #666;
}
.inner-page.inner-prodet .container .inner-prodet-2 {
  margin-bottom: 40px;
}
.inner-page.inner-prodet .container .inner-prodet-2 .tabs-nav {
  font-size: 0;
  border-bottom: 1px solid #e5e5e5;
}
.inner-page.inner-prodet .container .inner-prodet-2 .tabs-nav li {
  display: inline-block;
  width: 33.33%;
  font-size: 19px;
  line-height: 78px;
  font-weight: bold;
  text-align: center;
  color: #666;
  position: relative;
  cursor: pointer;
}
.inner-page.inner-prodet .container .inner-prodet-2 .tabs-nav li:hover:before,
.inner-page.inner-prodet .container .inner-prodet-2 .tabs-nav li.active:before {
  opacity: 1;
}
.inner-page.inner-prodet .container .inner-prodet-2 .tabs-nav li:last-of-type:after {
  display: none;
}
.inner-page.inner-prodet .container .inner-prodet-2 .tabs-nav li:after {
  content: "";
  width: 1px;
  height: 10px;
  background: #666;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.inner-page.inner-prodet .container .inner-prodet-2 .tabs-nav li:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #01579a;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
}
.inner-page.inner-prodet .container .inner-prodet-2 .tabs-content {
  padding: 40px 0;
  display: none;
  overflow: auto;
}
.inner-page.inner-prodet .container .inner-prodet-2 .tabs-content.active {
  display: block;
}
.inner-page.inner-prodet .container .inner-prodet-2 .tabs-content table tr td{
  padding: 5px;
}
.inner-page.inner-prodet .container .inner-prodet-3 .img-box img {
  width: 100%;
}
.inner-page.inner-prodet .container .inner-prodet-3 .info {
  padding: 30px;
  background: #fff;
}
.inner-page.inner-prodet .container .inner-prodet-3 .info p:nth-of-type(1) {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}
.inner-page.inner-prodet .container .inner-prodet-3 .info p:nth-of-type(2) {
  font-size: 13px;
  color: #333;
}
.inner-page.inner-prodet .container .inner-prodet-3 .swiper-slide{
  border: 1px solid #ccc;
}
.inner-page.inner-prodet .container .inner-prodet-3 .info{
  border-top: 1px solid #ccc;
}
.inner-page.inner-news {
  background: #fafafa;
  padding: 80px 0;
}
/*.inner-page.inner-news .container .inner-news-list .item {
  padding: 25px 0;
  border-bottom: 1px solid #eee;
}
.inner-page.inner-news .container .inner-news-list .item .info {
  width: 70%;
}
.inner-page.inner-news .container .inner-news-list .item .info p:nth-of-type(1) {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.inner-page.inner-news .container .inner-news-list .item .info p:nth-of-type(1) span {
  font-size: 12px;
  font-weight: normal;
  color: #888;
  margin-left: 20px;
}
.inner-page.inner-news .container .inner-news-list .item .info p:nth-of-type(1) a:hover {
  color: #01579a;
}
.inner-page.inner-news .container .inner-news-list .item .info p:nth-of-type(2) {
  font-size: 14px;
  line-height: 26px;
  color: #666;
}
.inner-page.inner-news .container .inner-news-list .item .img-box {
  width: 200px;
}
.inner-page.inner-news .container .inner-news-list .item .img-box img {
  width: 100%;
}*/
.inner-page.inner-news .container{
  overflow: hidden;
}
.inner-page.inner-news .container .inner-news-list{
  margin: -30px;
}
.inner-page.inner-news .container .inner-news-list .column{
  padding: 30px;
}
.inner-page.inner-news .container .inner-news-list .column .date{
  width: 10%;
  text-align: center;
}
.inner-page.inner-news .container .inner-news-list .column .date p:nth-of-type(1){
  font-size: 40px;
  font-weight: bold;
  color: #333;
  border-bottom: 1px solid #ccc;
  margin-bottom: 5px;
}
.inner-page.inner-news .container .inner-news-list .column .date p:nth-of-type(2){
  font-size: 16px;
  color: #333;
}
.inner-page.inner-news .container .inner-news-list .column .info{
  width: 90%;
  padding-left: 30px;
}
.inner-page.inner-news .container .inner-news-list .column .info p:nth-of-type(1){
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-page.inner-news .container .inner-news-list .column .info p:nth-of-type(2){
  font-size: 14px;
  line-height: 26px;
  color: #333;
}
.inner-page.inner-contact {
  padding: 80px 0;
}
.inner-page.inner-contact .container .inner-contact-1 {
  overflow: hidden;
  margin-bottom: 60px;
}
.inner-page.inner-contact .container .inner-contact-1 .tit {
  text-align: center;
  margin-bottom: 80px;
}
.inner-page.inner-contact .container .inner-contact-1 .tit p:nth-of-type(1) {
  font-size: 38px;
  color: #01579a;
  font-weight: bold;
}
.inner-page.inner-contact .container .inner-contact-1 .tit p:nth-of-type(2) {
  font-size: 34px;
  color: #666;
}
.inner-page.inner-contact .container .inner-contact-1 .grid-box {
  margin: -20px;
}
.inner-page.inner-contact .container .inner-contact-1 .grid-box .column {
  padding: 20px;
}
.inner-page.inner-contact .container .inner-contact-1 .grid-box .column .icon {
  width: 98px;
  height: 98px;
  border-radius: 100%;
  text-align: center;
  background: #01579a;
}
.inner-page.inner-contact .container .inner-contact-1 .grid-box .column .icon i {
  line-height: 98px;
  font-size: 40px;
  color: #fff;
}
.inner-page.inner-contact .container .inner-contact-1 .grid-box .column .info {
  width: 70%;
  padding-left: 20px;
}
.inner-page.inner-contact .container .inner-contact-1 .grid-box .column .info .info-tit {
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
}
.inner-page.inner-contact .container .inner-contact-1 .grid-box .column .info .info-content p {
  font-size: 16px;
  line-height: 24px;
  color: #666;
}
.inner-page.inner-gallery {
  padding: 80px 0;
  background: #fafafa;
}
.inner-page.inner-gallery .container {
  overflow: hidden;
  max-width: 1600px;
}
.inner-page.inner-gallery .container .grid-box {
  margin: -15px;
}
.inner-page.inner-gallery .container .grid-box .column {
  padding: 15px;
}
.inner-page.inner-gallery .container .grid-box .column .inner {
  border-radius: 8px;
  overflow: hidden;
  transition: 300ms;
}
.inner-page.inner-gallery .container .grid-box .column .inner:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
.inner-page.inner-gallery .container .grid-box .column .inner .img-box img {
  width: 100%;
}
.inner-page.inner-gallery .container .grid-box .column .inner .info {
  padding: 20px 30px;
  background: #fff;
}
.inner-page.inner-gallery .container .grid-box .column .inner .info p:nth-of-type(1) {
  padding-bottom: 15px;
  font-size: 16px;
  color: #000;
  border-bottom: 1px solid #dfdfdf;
  margin-bottom: 15px;
}
.inner-page.inner-gallery .container .grid-box .column .inner .info p:nth-of-type(2) {
  font-size: 16px;
  line-height: 30px;
  color: #666;
}
@media (max-width: 1440px) {
  #header .container .logo img {
    width: 150px;
  }
  #header .container .lan {
    margin-left: 15px;
  }
  #header .container .menu-box .menu > li {
    margin-right: 30px;
  }
  #header .container .menu-box .menu > li > a {
    font-size: 14px;
  }
  .inner-page.inner-about .inner-about-2 .container .list #honour-l {
    left: 15px;
  }
  .inner-page.inner-about .inner-about-2 .container .list #honour-r {
    right: 15px;
  }
  .inner-page.inner-about .inner-about-3 .container .list #partner-l {
    left: 15px;
  }
  .inner-page.inner-about .inner-about-3 .container .list #partner-r {
    right: 15px;
  }
  .inner-page.inner-about .inner-about-2 .container .list #factory-l{
    left: 15px;
  }
  .inner-page.inner-about .inner-about-2 .container .list #factory-r{
    right: 15px;
  }
}

@media (max-width: 1200px) {
  #header .container .lan > a{
    width: 90px;
  }
  #header .container .toggle-btn{
    width: 110px;
  }
  #header .container .menu-box .menu > li{
    margin-right: 20px;
  }

  #index-body .i-num .i-num-list .column:after {
    display: none;
  }
  #index-body .i-num .i-num-list .column p:nth-of-type(1) span {
    font-size: 40px;
  }

  #header .container .logo img{
    width: 100px;
  }
}
@media (max-width: 992px) {
  #banner{
    margin-top: 40px;
  }

  #header {
    display: none;
  }
  #m-header-wrapper {
    display: block;
  }
  .toggle-nav {
    display: none;
  }
  #index-banner {
    margin-top: 45px;
  }
  #index-banner #banner .swiper-slide {
    height: 500px;
  }
  #index-banner #banner #banner-page {
    display: none;
  }
  #index-banner #banner .mouse {
    display: none;
  }
  #index-banner #banner .swiper-slide .inner p:nth-of-type(1) {
    font-size: 40px;
  }
  #index-body .i-product .i-pro-bottom .i-pro-list .swiper-slide {
    padding: 20px 35px;
  }
  #index-body .i-product .i-pro-bottom .i-pro-list .swiper-slide .hover {
    display: none;
  }
  #index-body .i-product .i-pro-bottom .i-pro-list .swiper-slide:hover .inner p {
    color: #fff!important;
  }
  #footer .container .footer-top {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 40px;
  }
  #footer .container .footer-center {
    padding-left: 0;
    padding-right: 0;
  }
  #footer .container .footer-bottom {
    padding-left: 0;
    padding-right: 0;
  }
  #footer .container .footer-top .item {
    width: 50%!important;
    margin-bottom: 40px;
  }
  #footer .container .footer-top .item:nth-of-type(1) {
    width: 100%!important;
  }
  #footer .container .footer-center .item {
    width: 50%!important;
    margin-bottom: 20px;
  }
  #inner-banner{
  	margin-top: 45px;
  }
}
@media (max-width: 768px) {
  .container{
    overflow: hidden;
  }
  #inner-nav {
    display: none;
  }
  .inner-page.inner-about .inner-about-1 .container .left {
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  .inner-page.inner-about .inner-about-1 .container .right {
    width: 100%;
    float: none;
    padding-left: 0;
  }
  .inner-page.inner-prodet .container .inner-prodet-1 .left {
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  .inner-page.inner-prodet .container .inner-prodet-1 .right {
    width: 100%;
    float: none;
    padding-left: 0;
  }
  .inner-page.inner-news .container .inner-news-list .item .img-box {
    width: 100%;
    float: none;
    margin-bottom: 30px;
  }
  .inner-page.inner-news .container .inner-news-list .item .info {
    width: 100%;
    float: none;
  }
  .inner-page.inner-contact .container .inner-contact-1 .tit p:nth-of-type(1) {
    font-size: 25px;
  }
  .inner-page.inner-contact .container .inner-contact-1 .tit p:nth-of-type(2) {
    font-size: 20px;
  }
  .inner-page.inner-contact .container .inner-contact-1 .grid-box .column {
    width: 100%;
  }
}
@media (max-width: 576px) {
  #index-banner #banner .swiper-slide {
    height: 300px;
  }
  #index-banner #banner .swiper-slide .inner p:nth-of-type(1) {
    font-size: 20px;
    letter-spacing: 10px;
  }
  #index-banner #banner .swiper-slide .inner p:nth-of-type(2) {
    font-size: 20px;
  }
  #index-banner #banner .swiper-slide .inner p:nth-of-type(3) {
    display: none;
  }
	#index-banner #banner .swiper-slide .inner p:nth-of-type(4) {
    display: none;
  }
  #index-body .i-news .container .i-news-list .column{
    width: 100%;
  }
  #index-body .i-news .container .i-news-list .column .date{
    display: none;
  }
  #index-body .i-news .container .i-news-list .column .info{
    width: 100%;
    padding: 0;
    float: none;
  }
  #index-body .i-product .i-pro-top a {
    background-size: 50px!important;
    background-position: center 30px!important;
    padding: 100px 40px 40px;
    font-size: 16px;
  }
  #index-body .i-product .i-pro-bottom {
    padding-bottom: 60px;
  }
  #index-body .i-product .i-pro-bottom .i-pro-tit .container p:nth-of-type(2) {
    font-size: 25px;
  }
  #index-body .i-product .i-pro-bottom .i-pro-list .column:after {
    display: none;
  }
  #index-body .i-apl #iapl .swiper-slide .container p:nth-of-type(2) {
    font-size: 25px;
  }
  #index-body .i-apl #iapl .swiper-slide .container p:nth-of-type(3) {
    font-size: 14px;
  }
  #index-body .i-partner {
    padding: 60px 0;
  }
  #index-body .i-news{
    padding: 60px 0;
  }
  #index-body .i-news .container .i-news-tit p:nth-of-type(2) {
    font-size: 25px;
  }
  #index-body .i-news .container .i-news-list .column .inner p:nth-of-type(1) {
    font-size: 18px;
  }
  #footer .container .footer-top .item > p {
    font-size: 20px;
  }
  #footer .container .footer-center .item {
    width: 100%!important;
  }
  #footer .container .footer-top .item .erweima > div .img {
    width: 120px;
  }
  #inner-banner .container .tit {
    font-size: 20px;
  }
  .inner-page.inner-about .inner-about-1 .container .right p:nth-of-type(1) {
    font-size: 25px;
  }
  .inner-page.inner-about .inner-about-2 .container .tit p:nth-of-type(1) {
    font-size: 25px;
  }
  .inner-page.inner-about .inner-about-3 .container .tit p:nth-of-type(1) {
    font-size: 25px;
  }
  .inner-page.inner-prodet .container .inner-prodet-2 .tabs-nav li {
    font-size: 14px;
  }
  .inner-page.inner-prodet .container .inner-prodet-1 .right p:nth-of-type(1) {
    font-size: 20px;
  }
  .inner-page.inner-news {
    padding: 60px 0;
  }
  .inner-page.inner-news .container .inner-news-list .column{
    width: 100%;
  }
  .inner-page.inner-news .container .inner-news-list .column .date{
    display: none;
  }
  .inner-page.inner-news .container .inner-news-list .column .info{
    width: 100%;
    padding: 0;
  }
  .inner-page.inner-contact {
    padding: 60px 0;
  }
  .inner-page.inner-contact .container .inner-contact-1 .tit {
    margin-bottom: 60px;
  }
  .inner-page.inner-contact .container .inner-contact-1 .grid-box .column .icon {
    width: 45px;
    height: 45px;
  }
  .inner-page.inner-contact .container .inner-contact-1 .grid-box .column .icon i {
    line-height: 45px;
    font-size: 18px;
  }
}

.newdet-page .news {
  padding: 50px 0 60px!important;
  color: #777777;
}
.newdet-page .news .news_title h1 {
  padding-bottom: 10px;
  font-size: 20px;
  text-align: center;
  color: #222;
}
.newdet-page .news .news_date {
  text-align: center;
  line-height: 22px;
  border-bottom: 1px solid #555;
  padding-bottom: 5px;
}
.newdet-page .news .news_abst {
  border-bottom: 1px solid #555;
  padding: 10px 0;
}
.newdet-page .news .news_abst p {
  display: inline-block;
}
.newdet-page .news .news_contents {
  color: #555;
  line-height: 24px;
  clear: both;
  margin-top: 10px;
  border-bottom: 1px solid #555;
  padding: 20px 0 40px;
}
.newdet-page .news .news_contents a {
  color: #555;
  font-size: 16px;
  line-height: 24px;
}
.newdet-page .news .news_contents p, .newdet-page .news .news_contents div, .newdet-page .news .news_contents span, .newdet-page .news .news_contents table {
  color: #555;
  font-size: 14px;
  line-height: 24px;
  clear: both;
}
.newdet-page .news .news_next {
  width: 99%;
  margin-top: 0px;
  padding-left: 5px;
  border-top: 0px solid #CCC;
  text-align: left;
  padding-top: 10px;
}
.newdet-page .news .news_next a {
  width: 100%;
  height: 25px;
  line-height: 25px;
  color: #777;
  font-size: 15px;
  margin-left: 5px;
}
.newdet-page .news .news_next a:hover {
  width: 100%;
  height: 25px;
  line-height: 25px;
  color: #000;
}
.newdet-page .news .newsnav {
  margin-bottom: 30px;
}
.cn-form {
  width: 100%;
  padding: 25px 35px 15px;
  border: 1px solid #dddddd;
  background: #fff;
}
.cn-form p {
  font-size: 18px;
  padding: 10px 0;
  color: #666;
}
.cn-form .formtit {
  margin-bottom: 26px;
  font-size: 22px;
  line-height: 23px;
  color: #444;
  text-align: center;
  padding-bottom: 18px;
  background: url(../images/form-tit-bg.jpg) no-repeat center bottom;
}
.cn-form li {
  margin-bottom: 13px;
  color: #444;
}
.cn-form li label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}
.cn-form .btnTjly {
  font-size: 15px;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  width: 100%;
  height: 38px;
  background: #1170d5;
  border: none;
  cursor: pointer;
  color: #fff;
}
.cn-form .btnTjly:hover {
  background: #000;
}
.cn-form .m-form-l {
  width: 49%;
}
.cn-form .m-form-l li .iptTxt {
  font-size: 13px;
  padding: 0 15px;
  transition: 0.2s linear;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  width: 100%;
  border: 1px solid #dedede;
  height: 40px;
  outline: none;
  background: #fff;
  color: #777;
}
.cn-form .m-form-l li .iptTxt:focus {
  border-color: #1170d5;
  box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  -webkit-box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  -moz-box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  -ms-box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  -o-box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  outline: 0;
  background: rgba(251, 185, 8, 0.04);
}
.cn-form .m-form-l li .txtAre {
  width: 95%;
  height: 383px;
  border: 1px solid #dedede;
  outline: none;
  resize: none;
  padding: 14px;
  color: #ccc;
  line-height: 18px;
}
.cn-form .m-form-r {
  width: 49%;
}
.cn-form .m-form-r textarea {
  height: 315px;
  width: 100%;
  border: 1px solid #dedede;
  font-size: 13px;
  padding: 10px 15px;
  transition: 0.2s linear;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
}
.cn-form .m-form-r textarea:focus {
  border-color: #1170d5;
  box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  -webkit-box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  -moz-box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  -ms-box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  -o-box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  outline: 0;
  background: rgba(251, 185, 8, 0.04);
}
.cn-form div.wpcf7 .ajax-loader {
  display: block;
  margin: 0 auto;
  width: auto;
  background-repeat: no-repeat;
  background-position: center;
}
.cn-form .yzm img {
  width: 19.4%;
  display: inline-block;
}
.cn-form .yzm input {
  font-size: 13px;
  padding: 0 15px;
  width: 75.6%;
  border: 1px solid #dedede;
  height: 30px;
  outline: none;
  background: #fff;
  color: #777;
}
.cn-form .m-form-r .pcsb{
		display: none;
	}
.m-page {
  text-align: center;
  padding: 45px 0;
  font-size: 1rem;
  margin-top: 40px;
}
.m-page span, .m-page a {
  margin: 0 1px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  background: #333;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#575e63, endColorstr=#404549, GradientType='0');
  /* IE*/
  color: #fff;
}
.m-page a:hover, .m-page .current, .m-page .active {
  background: #01579a;
  /* IE*/
}

@media (max-width:768px){
	.cn-form .m-form-l{
		width: 100%;
		float: none;
	}
	.cn-form .m-form-r{
		width: 100%;
		float: none;
	}
	.cn-form .m-form-l .pcsb{
		display: none;
	}
	.cn-form .m-form-r .pcsb{
		display: block;
	}
}



.fixed-toolbar {
  right: 0;
  position: fixed;
  bottom: 45%;
  z-index: 100;
}
.fixed-toolbar ul li {
  display: block;
  margin-top: 2px;
  width: 50px;
  height: 50px;
  background-color:#303030;
  line-height: 50px;
  text-align: center;
  color: #fff;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  font-size: 24px;
  cursor: pointer;
  position: relative;
}

.fixed-toolbar ul li:first-child {
  margin-top: 0;
}
.fixed-toolbar ul li:hover {
  background: #01579a;
}
.fixed-toolbar ul li:hover .mail-box,
.fixed-toolbar ul li:hover .phone-box {
  right: 52px;
  opacity: 1;
}
.fixed-toolbar ul li .mail-box,
.fixed-toolbar ul li .phone-box {
  width: 180px;
  height: 50px;
  background-color: #01579a;
  position: absolute;
  top: 0;
  right: -100%;
  opacity: 0;
  font-size: 14px;
  line-height: 50px;
  color: #FFFFFF;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}



.kf {
	width: 208px;
	position: fixed;
	/* right: 20px; */
	right: -208px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 999;
}
.kt-top {
	height: 40px;
	line-height: 40px;
	background: url("../images/kefu.png") 12px center no-repeat #007ccb;
	-o-background-size: auto 20px;
	-ms-background-size: auto 20px;
	-moz-background-size: auto 20px;
	-webkit-background-size: auto 20px;
	background-size: auto 20px;
	padding-left: 46px;
	font-size: 14px;
	color: #fff;
}
.kt-top span:hover {
	transform: rotate(90deg);
}
.kt-top span {
	width: 18px;
	height: 16px;
	float: right;
	position: relative;
	margin: 10px 10px 0px 0px;
	cursor: pointer;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}
.kt-top span b {
	width: 100%;
	height: 2px;
	background: #fff;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
}
.kt-top span b:first-child {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}
.kt-top span b:last-child {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
}
.kf .con {
	overflow: hidden;
	background: #fff;
}
.kf .qq li {
	height: 36px;
	line-height: 36px;
	border-bottom: #f5f5f5 solid 1px;
	padding-left: 16px;
}
.kf .qq li a {
	height: 36px !important;
	color: #666;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-decoration: initial;
	display: block;
}
.kf .qq li a img {
	padding-right: 6px;
  vertical-align: middle;
}
.kf .con h5 {
	height: 26px;
	line-height: 26px;
	margin-top: 12px;
	background: url('../images/lianxi.png') 16px center no-repeat;
	padding-left: 45px;
	color: #666;
	font-size: 14px;
	margin-bottom: 0;
}
.kf .contact {
	margin-top: 1px;
}
.kf .contact p {
	height: 26px;
	line-height: 26px;
	color: #666;
	font-size: 14px;
	padding-left: 22px;
	margin: 0;
}
.kf .contact p:nth-child(2n) {
	padding-left: 32px;
}
.kf .con h5.qr-icon {
	background: url('../images/erweima.png') 16px center no-repeat;
}
.kf .con .qr {
	margin-top: 10px;
	padding-left: 40px;
}
.kf .con .qr img {
	width: 110px;
	height: 110px;
}
.kf .backTop {
	width: 100%;
	height: 40px;
	margin-top: 10px;
	background: url('../images/huidaodingbu.png') center center no-repeat #007ccb;
	background-size: 18px auto;
	cursor: pointer;
}
.kf-side {
	padding: 18px 10px 10px;
	background: #007ccb;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	left: -34px;
	cursor: pointer;
}
.kf-side b {
	display: block;
	color: #fff;
	line-height: 18px;
	font-size: 14px;
	font-weight: normal;
}
.kf-side span.arrow {
	width: 12px;
	height: 12px;
	background: url('../images/jt-1.png') no-repeat;
	-o-background-size: auto 12px;
	-ms-background-size: auto 12px;
	-moz-background-size: auto 12px;
	-webkit-background-size: auto 12px;
	background-size: auto 12px;
	display: block;
	margin-top: 10px;
}
.kf-side span.on {
	background: url('../images/jt-2.png') no-repeat;
	-o-background-size: auto 12px;
	-ms-background-size: auto 12px;
	-moz-background-size: auto 12px;
	-webkit-background-size: auto 12px;
	background-size: auto 12px;
}


/*@media screen and (max-width: 767px) {
  .kf {
    display: none;
  }
}*/




.new-float{position: fixed;right: -3px;top: 50%;z-index:999;width: 77px;height: 374px;margin-top: -187px;}

.new-float li{position: relative;width: 77px;height: 57px;margin-bottom: 1px;line-height: 20px;color: #fff;text-align: center;}

.new-float li.hover{overflow: hidden;}

.new-float li a{display: inline-block;color: #fff;}

.new-float li a.tit{width: 77px;height: 56px;padding: 30px 10px 0 0;color: #fff;font-size: 12px;    box-sizing: border-box;}

.new-float li p{position: relative;z-index: 2;height: 27px;padding-top: 30px;cursor: pointer;}

.new-float li.fi a{ background: #01579a url(../images/on_line.png) no-repeat 0px 0px;}

.new-float li.tp a{background: #01579a url(../images/on_line.png) no-repeat 0px -171px;}

.new-float li.th a{background: #01579a url(../images/on_line.png) no-repeat 0px -57px;}

.new-float li.fo a.tit{background: #01579a url(../images/on_line.png) no-repeat 0px -114px;}

.new-float li.fif p{background: #01579a url(../images/bg_float05.png) no-repeat;}

.new-float li .tel{position: absolute;left: 75px;top: 0;z-index: 1;width: 184px;height: 56px;font: 24px/57px Arial;color: #fff; background:#5b5b5b;cursor: pointer;}

.new-float li .tel0{position: absolute;left: -184px;top: 0;z-index: 1;width: 184px;height: 56px;font: 24px/57px Arial;color: #fff; background:#5b5b5b;cursor: pointer;}

.new-float a.mof{display: inline-block;width: 78px;height: 71px;padding: 12px 11px 0 12px;margin-top: 10px;*margin-top: 7px;background:url(../images/on_line.png) no-repeat 0px -239px;font-size: 15px;line-height: 22px;color: #fff;}

.ewm .tel0{
	display: none;
}
.ewm:hover .tel0{
	display: block;
}